runtime.mSpanList.first (field)

24 uses

	runtime (current package)
		arena.go#L1002: 		s = h.userArena.readyList.first
		mgcwork.go#L425: 		if work.wbufSpans.free.first != nil {
		mgcwork.go#L427: 			s = work.wbufSpans.free.first
		mgcwork.go#L536: 			span := work.wbufSpans.free.first
		mheap.go#L1815: 	first *mspan // first span in list, or nil if none
		mheap.go#L1821: 	list.first = nil
		mheap.go#L1831: 	if list.first == span {
		mheap.go#L1832: 		list.first = span.next
		mheap.go#L1847: 	return list.first == nil
		mheap.go#L1855: 	span.next = list.first
		mheap.go#L1856: 	if list.first != nil {
		mheap.go#L1859: 		list.first.prev = span
		mheap.go#L1864: 	list.first = span
		mheap.go#L1879: 		list.first = span
		mheap.go#L1893: 	for s := other.first; s != nil; s = s.next {
		mheap.go#L1902: 		other.last.next = list.first
		mheap.go#L1903: 		list.first.prev = other.last
		mheap.go#L1904: 		list.first = other.first
		mheap.go#L1907: 	other.first, other.last = nil, nil
		stack.go#L196: 	s := list.first
		stack.go#L413: 			s = stackLarge.free[log2npage].first
		stack.go#L1298: 		for s := list.first; s != nil; {
		stack.go#L1314: 		for s := stackLarge.free[i].first; s != nil; {